home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / script-fu-set-cmap.scm < prev    next >
Text File  |  2009-12-15  |  2KB  |  66 lines

  1. ; Set Colormap v1.1  September 29, 2004
  2. ; by Kevin Cozens <kcozens@interlog.com>
  3. ;
  4. ; Change the colourmap of an image to the colours in a specified palette.
  5. ; Included is script-fu-make-cmap-array (available for use in scripts) which
  6. ; returns an INT8ARRAY containing the colours from a specified palette.
  7. ; This array can be used as the cmap argument for gimp-image-set-cmap.
  8.  
  9. ; GIMP - The GNU Image Manipulation Program
  10. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  11. ;
  12. ; This program is free software; you can redistribute it and/or modify
  13. ; it under the terms of the GNU General Public License as published by
  14. ; the Free Software Foundation; either version 2 of the License, or
  15. ; (at your option) any later version.
  16. ;
  17. ; This program is distributed in the hope that it will be useful,
  18. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. ; GNU General Public License for more details.
  21. ;
  22. ; You should have received a copy of the GNU General Public License
  23. ; along with this program; if not, write to the Free Software
  24. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  
  26. (define (script-fu-make-cmap-array palette)
  27.   (let* (
  28.         (num-colours (car (gimp-palette-get-info palette)))
  29.         (cmap (cons-array (* num-colours 3) 'byte))
  30.         (colour 0)
  31.         (i 0)
  32.         )
  33.  
  34.     (while (< i num-colours)
  35.       (set! colour (car (gimp-palette-entry-get-color palette i)))
  36.       (aset cmap (* i 3) (car colour))
  37.       (aset cmap (+ (* i 3) 1) (cadr colour))
  38.       (aset cmap (+ (* i 3) 2) (caddr colour))
  39.       (set! i (+ i 1))
  40.     )
  41.  
  42.     cmap
  43.   )
  44. )
  45.  
  46. (define (script-fu-set-cmap img drawable palette)
  47.   (gimp-image-set-colormap img
  48.                            (* (car (gimp-palette-get-info palette)) 3)
  49.                            (script-fu-make-cmap-array palette))
  50.   (gimp-displays-flush)
  51. )
  52.  
  53. (script-fu-register "script-fu-set-cmap"
  54.     _"Se_t Colormap..."
  55.     _"Change the colormap of an image to the colors in a specified palette."
  56.     "Kevin Cozens <kcozens@interlog.com>"
  57.     "Kevin Cozens"
  58.     "September 29, 2004"
  59.     "INDEXED*"
  60.     SF-IMAGE     "Image"    0
  61.     SF-DRAWABLE  "Drawable" 0
  62.     SF-PALETTE  _"Palette"  "Default"
  63. )
  64.  
  65. (script-fu-menu-register "script-fu-set-cmap" "<Image>/Colors/Map/Colormap")
  66.